/* family member section css */
.family-member-section{
    position: relative;
    background: #090416;
    animation: 1s ease-in-out 1 alternate translateodtestcards;
}
.family-member-section .bg-img-wrapper{
    width: 100%;
    height: 100%;
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    object-fit: contain;
}
.bg-img-wrapper.fm-bg-dektop{
    display: none;
}
.family-mamber-internal-content{
    padding: 62px 0px 64px 0px;
    color: #FFFFFF;
    text-align: center;
    font-family: 'Cantata One', serif;
    position: relative;
}
.fmm-profile-wrapper{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-row-gap: 30px;
    padding: 42px 0px 68px 0px;
}
.fmm-profile-wrapper .fmm-profile-section{
    display: block;
    margin: 0 auto;
    text-decoration: none;
    color: #ffffff;
    transition: .3s ease-in-out;
}
.fmm-profile-wrapper .fmm-profile-section:hover{
    scale: 1.1;
}
.fmm-profile-wrapper .fmm-profile-img-section{
    height: 140px;
    width: 140px;
    border: 1px solid #848198;
    border-radius: 50%;
    overflow: hidden;
    justify-content: center;
    display: flex;
}
.fmm-profile-img-wraper{
    height: 127px;
    width: 127px;
    overflow: hidden;
    margin: auto;
    border-radius: 50%;
}
.fmm-profile-img-wraper .fmm-profile-img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.fmm-name{
    padding-top: 18px;
    margin-bottom: 0px;
    font-weight: 400;
    font-size: 20px;
}
.fmm-quote-parent{
    display: flex;
    align-items: center;
}
.fmm-quote-wrapper{
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 17px;
}
.fmm-quote-wrapper .fmm-tagline{
    padding:16px 16px 0px 16px
}
@media (min-width: 992px){
/* family member section */
.family-mamber-internal-content{
    padding: 127px 0px 97px 0px;
}
.bg-img-wrapper.fm-bg-dektop{
    display: block; 
}
.bg-img-wrapper.fm-bg-mobile{
    display: none;
}
.fmm-heading.smain-heading{
    display: flex;
    align-items: center;
    justify-content: center;
}
.fmm-heading::before{
    content: "";
    height: 1px;
    width: 10%;
    background: #848198;
    position: absolute;
    left: 26%;
}
.fmm-heading::after{
    content: "";
    height: 1px;
    width: 22%;
    background: #848198;
    position: absolute;
    right: 14%;
}
.fmm-profile-wrapper{
    grid-template-columns: repeat(6,1fr);
    overflow: auto;
    padding: 58px 0px 84px 0px;
}
.fmm-quote-wrapper{
    max-width: 396px;
    margin: 0 auto;
}
.fmm-quote-parent::before{
    content: "";
    height: 1px;
    width: 22%;
    background: #848198;
    position: absolute;
    left: 11%;
}
.fmm-quote-parent::after{
    content: "";
    height: 1px;
    width: 10%;
    background: #848198;
    position: absolute;
    right: 24%;
}
}